GO SUB
GO TO

Syntax: GO SUB line_number
   and: GO TO line_number
Location: QL ROM

These commands allow you to jump from line to line within a program.

GO SUB jumps to a sub-routine and if the program contains a RETurn statement, control is returned to the statement following the original GO SUB command.

GO TO jumps to a specified line number in the program.

CROSS-REFERENCE:
Try to use SuperBASIC's more powerful REPeat, FOR, DEFine PROCedure and DEFine FuNction structures instead!
